}
static long
-babl_fish_path_process (Babl *babl,
+babl_fish_path_process (const Babl *babl,
const void *source,
void *destination,
long n)
}
static long
-babl_fish_process (Babl *babl,
- const void *source,
- void *destination,
- long n)
+_babl_fish_process (const Babl *babl,
+ const void *source,
+ void *destination,
+ long n)
{
long ret = 0;
return ret;
}
+long
+babl_fish_process (const Babl *babl,
+ const void *source,
+ void *destination,
+ long n);
+
+long
+babl_fish_process (const Babl *babl,
+ const void *source,
+ void *destination,
+ long n)
+{
+ return _babl_fish_process (babl, source, destination, n);
+}
+
long
babl_process (const Babl *cbabl,
const void *source,
{
babl->fish.processings++;
babl->fish.pixels +=
- babl_fish_process (babl, source, destination, n);
+ _babl_fish_process (babl, source, destination, n);
return n;
}